Fonte: {{ noticia.feed.split('/')[2] if noticia.feed else '' }}
{{ noticia.publicado or 'Data não disponível' }}
{% set resumo_curto = noticia.resumo[:150] if noticia.resumo else (noticia.texto[:150] if noticia.texto) %}
{% if resumo_curto %}
{{ resumo_curto }}{% if resumo_curto|length >= 150 %}...{% endif %}
{% if noticia.subitens %}
{% for sub in noticia.subitens %}
- {{ sub }}
{% endfor %}
{% endif %}
{% endif %}
Ler mais